home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
comm
/
bbs
/
cnet5demo.lha
/
cnet
/
ircrexx
/
away.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-03-23
|
301b
|
15 lines
/* ORC - sets the user away with channel message. */
options results
parse arg orcport a1
a1 = trim(a1)
if show('P', orcport) then do
address value orcport
if length(a1) > 0 then
cnetirccmd '/me is AWAY -- 'a1
else
cnetirccmd '/me is BACK.'
cnetirccmd '/away 'a1
end